.containerBoostSales {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease;
    transform: translateY(20px);
}

.containerBoostSales.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.boost-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
    max-width: 300px;
    animation: fadeSlide .4s ease;
    font-family: 'Inter', sans-serif;
}

.boost-box img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
}

.boost-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.boost-nome {
    font-weight: 700;
    font-size: 14px;
    color: #111;
}

.boost-cidade {
    font-size: 12px;
    color: #666;
    margin-left: 4px;
}

.boost-info a {
    font-weight: 600;
    color: #222;
    text-decoration: none;
    font-size: 13px;
    margin-top: 2px;
}

.boost-info small {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*  */